home *** CD-ROM | disk | FTP | other *** search
/ Hottest 6 / Hottest 6 (1996)(PDSoft)[!].iso / pdsoft / demo_library / 4404.lha / BULDERAGA.LHA / InstallBulder < prev    next >
Text File  |  1995-02-23  |  2KB  |  68 lines

  1. ;Bulder v0.29
  2.  
  3. (complete 0)
  4.  
  5. (set @execute-dir (pathonly @icon))
  6.  
  7. (if (exists "Games:" (noreq))
  8.     (set BulderDrawerDefault "Games:")
  9.     (set BulderDrawerDefault @default-dest)
  10. )
  11.  
  12. (set BulderDrawerName
  13.     (tackon
  14.         (askdir
  15.             (prompt "In which disk or drawer should Bulder 0.29 be installed?\n(A directory called Bulder will be created there.)")
  16.             (help @askdir-help)
  17.             (default BulderDrawerDefault)
  18.         )
  19.         "Bulder"
  20.     )
  21. )
  22. (complete 1)
  23. (makedir BulderDrawerName (infos))
  24. (complete 10)
  25. (set @default-dest BulderDrawerName)
  26.  
  27. (set ECSorAGA
  28.     (askoptions
  29.         (prompt "Select which versions of Bulder you wish to install.\nNote: Both versions of Bulder wont fit on a standard 880K floppy disk.")
  30.         (help    "Select ECS-Bulder for Amigas with old chipset (i.e. Amiga 500, Amiga 3000...).\n\n"
  31.             "AGA-Bulder should only be selected if you have an Amiga with AGA-chipset (i.e. Amiga 1200)."
  32.         )
  33.  
  34.         (choices
  35.             "ECS-Bulder"
  36.             "AGA-Bulder"
  37.         )
  38.         (default 3)
  39.     )
  40. )
  41. (complete 11)
  42.  
  43. ;install ecs-version (if wanted)
  44. (
  45. if (bitand ECSorAGA 1)
  46.     (
  47.     (working "Unpacking ECS-version of Bulder")
  48.     (run (cat "LX -m -q x BulderECS.lha \"" BulderDrawerName "/\""))
  49.     (complete 40)
  50.     )
  51. )
  52.  
  53. ;install aga-version (if wanted)
  54. (
  55. if (bitand ECSorAGA 2)
  56.     (
  57.     (working "Unpacking AGA-version of Bulder")
  58.     (run (cat "LX -m -q x BulderAGA.lha \"" BulderDrawerName "/\""))
  59.     (complete 80)
  60.     )
  61. )
  62. (complete 82)
  63.  
  64. ;install other files
  65. (working "Unpacking docs, levels, sounds...")
  66. (run (cat "LX -m -q x BulderBoth.lha \"" BulderDrawerName "/\""))
  67. (complete 100)
  68.